html {
  overflow-y: scroll;
  min-height: 100vh;
  /* Variable CSS para altura de viewport movil */
  --vh: 1vh;
}

body {
  background: #43484d;
  background-image: url("../../images/hero_5.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Titillium Web", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Usar variable CSS en moviles */
  min-height: calc(var(--vh, 1vh) * 100);
}

a {
  text-decoration: none;
  color: #C72E3B;
  transition: 0.5s ease;
}
a:hover {
  color: rgb(189.05, 43.7, 56.05);
}

.form {
  background: rgba(19, 35, 47, 0.9);
  padding: 30px 30px 30px 30px;
  max-width: 450px;
  margin: 20px auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
}

.parrafo {
  background: rgba(19, 35, 47, 0.9);
  padding: 30px 30px 30px 30px;
  max-width: 1024px;
  margin: 20px auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
  text-align: justify;
}

.parrafo2 {
  text-align: justify;
}

.tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.tab-group:after {
  content: "";
  display: table;
  clear: both;
}
.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 20px;
  background: rgba(160, 179, 176, 0.25);
  color: #a0b3b0;
  font-size: 18px;
  float: left;
  width: 50%;
  text-align: center;
  cursor: pointer;
  transition: 0.5s ease;
}
.tab-group li a:hover {
  background: rgb(189.05, 43.7, 56.05);
  color: #ffffff;
}
.tab-group li a.touch-active {
  transform: scale(0.98);
  transition: none;
}
.tab-group .active a {
  background: #C72E3B;
  color: #ddd;
}

.tab-content > div:last-child {
  display: none;
}

h1 {
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  margin: 0 0 40px;
}

p {
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  margin: 0 0 20px;
}

label {
  position: absolute;
  transform: translateY(6px);
  left: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
  pointer-events: none;
  font-size: 20px;
}
label .req {
  margin: 2px;
  color: #C72E3B;
}

label.active {
  transform: translateY(50px);
  left: 2px;
  font-size: 14px;
}
label.active .req {
  opacity: 0;
}

label.highlight {
  color: #ffffff;
}

input,
textarea {
  font-size: 18px;
  display: block;
  width: 100%;
  height: 45px;
  padding: 8px 12px;
  background: none;
  background-image: none;
  border: 1px solid #a0b3b0;
  color: #ffffff;
  border-radius: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
input:focus,
textarea:focus {
  outline: 0;
  border-color: #C72E3B;
}

textarea {
  border: 2px solid #a0b3b0;
  resize: vertical;
}

.field-wrap {
  position: relative;
  margin-bottom: 40px;
}

.top-row:after {
  content: "";
  display: table;
  clear: both;
}
.top-row > div {
  float: left;
  width: 48%;
  margin-right: 4%;
}
.top-row > div:last-child {
  margin: 0;
}

.button {
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 15px 0;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #C72E3B;
  color: #ddd;
  transition: all 0.5s ease;
}
.button:hover, .button:focus {
  background: rgb(189.05, 43.7, 56.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.button.touch-active {
  transform: translateY(1px);
  transition: none;
}

.button-block {
  display: block;
  width: 100%;
}

.forgot {
  margin-top: -20px;
  text-align: left;
}

.input-group-append {
  margin-top: 5px;
  align-items: left;
}

.passw {
  border-color: #C72E3B;
  color: #C72E3B;
}

.pie-pagina {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #dee2e6;
  color: #869099;
}

.pie-pagina .grupo-1 {
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 8px;
  padding: 10px 10px;
}

header {
  /* We want the header to have a static height,
   it will always take up just as much space as it needs.  */
  /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
  flex: 0 0 auto;
  padding: 0.3px 0.3rem;
}

.main-content {
  /* By setting flex-grow to 1, the main content will take up
   all of the remaining space on the page.
   The other elements have flex-grow: 0 and won't contest the free space. */
  /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
  flex: 1 0 auto;
  justify-content: center;
  justify-content: center;
  justify-content: center;
  align-items: center;
}

footer {
  /* Like the header, the footer will have a static height - it shouldn't grow or shrink.  */
  /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
  flex: 0 0 auto;
  align-items: center;
  font-size: 10px;
  flex-flow: row-reverse wrap;
}

.content-header {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 10px 0.5rem;
}

.content-header figure {
  width: 100%;
  display: flex;
  grid-template-columns: repeat(1, 1fr);
  justify-content: left;
  align-items: left;
}

.pie-pagina .grupo-1 .box {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  justify-content: center;
  justify-content: center;
  padding: 5px 10px;
  text-align: center;
}
.pie-pagina .grupo-1 .box:hover {
  background-color: rgba(160, 179, 176, 0.2);
}

.pie-pagina .grupo-1 .box figure img {
  width: 10px;
}

.pie-pagina .grupo-1 .box p {
  color: #43484d;
  margin-bottom: 1px;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .pie-pagina .grupo-1 {
    width: 60%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 8px;
    padding: 15px 15px;
  }
  .content-header {
    width: 60%;
  }
}
@media screen and (max-width: 800px) {
  .pie-pagina .grupo-1 {
    width: 75%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    padding: 15px 15px;
  }
  .content-header {
    width: 75%;
  }
}
@media (min-width: 1200px) {
  .pie-pagina .grupo-1 {
    width: 95%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    padding: 15px 15px;
  }
  .content-header {
    width: 95%;
  }
}
@media (min-width: 1400px) {
  .pie-pagina .grupo-1 {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    padding: 10px 10px;
  }
  .content-header {
    width: 100%;
  }
}
/* Tablet styles */
@media screen and (max-width: 768px) {
  .form {
    padding: 20px;
    margin: 20px auto;
    width: 95%;
  }
  .tab-group li a {
    font-size: 14px;
    padding: 10px;
  }
  h1 {
    font-size: 24px;
    margin: 0 0 30px;
  }
  header img {
    max-width: 200px;
  }
  .col-sm-10,
  .col-sm-1 {
    padding: 0 5px;
  }
  .row .col-sm-10 input[type=password] {
    border-radius: 4px;
    border-right: 1px solid #a0b3b0;
  }
  #show_password,
  #show_password2 {
    padding: 10px;
  }
}
/* Mobile styles */
@media screen and (max-width: 480px) {
  body {
    background-position: center;
    background-size: cover;
    /* Usar variable CSS en moviles */
    min-height: calc(var(--vh, 1vh) * 100);
  }
  .form {
    padding: 20px;
    margin: 10px auto;
    width: 95%;
    max-width: 400px;
  }
  .tab-group li a {
    font-size: 12px;
    padding: 8px;
    width: 50%;
  }
  h1 {
    font-size: 20px;
    margin: 0 0 25px;
  }
  input[type=text],
  input[type=password] {
    font-size: 16px; /* Previene zoom en iOS */
    padding: 10px 12px;
    height: 45px;
    height: 42px;
  }
  .button {
    padding: 10px 12px;
    font-size: 14px;
  }
  header img {
    max-width: 160px;
  }
  /* Mejorar layout de contrasena en moviles - mantener en una linea */
  .row {
    display: flex;
    align-items: stretch;
    gap: 5px;
  }
  .row .col-sm-10 {
    flex: 1;
    width: auto !important;
    margin-bottom: 0 !important;
  }
  .row .col-sm-1 {
    flex: 0 0 auto;
    width: auto !important;
    margin-bottom: 0 !important;
    min-width: 50px;
  }
  .row .col-sm-10 input[type=password] {
    border-radius: 4px;
    border-right: 1px solid #a0b3b0;
  }
  #show_password,
  #show_password2 {
    width: auto !important;
    margin-top: 0 !important;
    padding: 12px 8px !important;
    height: 45px;
    min-width: 45px;
    border-radius: 4px;
    border: none;
    background-color: rgba(160, 179, 176, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    justify-content: center;
    justify-content: center;
  }
  #show_password:hover,
  #show_password2:hover {
    background-color: rgba(160, 179, 176, 0.2);
  }
  .pie-pagina .grupo-1 .box p {
    font-size: 10px;
  }
  .error-message {
    font-size: 11px;
  }
}
/* Very small mobile screens */
@media screen and (max-width: 320px) {
  .form {
    padding: 10px;
    margin: 10px auto;
  }
  .tab-group li a {
    font-size: 11px;
    padding: 6px;
  }
  h1 {
    font-size: 18px;
  }
  header img {
    max-width: 140px;
  }
  .error-message {
    font-size: 10px;
  }
}
/* Landscape mobile orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .form {
    margin: 10px auto;
    padding: 20px;
  }
  h1 {
    margin: 0 0 15px;
    font-size: 18px;
  }
  .tab-group {
    margin: 0 0 20px 0;
  }
  header img {
    max-width: 80px;
  }
}
@media (min-width: 1920px) {
  .pie-pagina .grupo-1 {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    padding: 10px 10px;
  }
  .content-header {
    width: 100%;
  }
}
/* Estilos para validacion de formularios */
.error-message {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
  display: block;
  line-height: 1.3;
}

input.invalid {
  border: 1px solid #ff6b6b !important;
  background-color: rgba(255, 107, 107, 0.1);
}

input.valid {
  border: 1px solid #4ecdc4 !important;
}

.form-group {
  position: relative;
  margin-bottom: 15px;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  body {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    background-attachment: scroll;
  }
  .main-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: center;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
  }
  .form {
    max-width: 600px;
    padding: 40px;
    margin: 30px auto;
  }
  input[type=text],
  input[type=password] {
    font-size: 18px;
    padding: 14px 16px;
  }
  .button {
    padding: 14px 16px;
    font-size: 16px;
  }
  h1 {
    font-size: 28px;
    margin: 0 0 35px;
  }
  header img {
    max-width: 250px;
  }
  .pie-pagina {
    margin-top: auto;
    flex: 0 0 auto;
  }
}
#modalPoliticaPrivacidad .modal-content {
  background-color: #ffffff;
  color: #333333;
}

#modalPoliticaPrivacidad .modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

#modalPoliticaPrivacidad .modal-title {
  color: #333333;
  font-weight: 600;
}

#modalPoliticaPrivacidad .modal-body {
  color: #333333;
  background-color: #ffffff;
}

#modalPoliticaPrivacidad .modal-body p {
  color: #333333 !important;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: justify;
}

#modalPoliticaPrivacidad .modal-body h6 {
  color: #2c3e50 !important;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

#modalPoliticaPrivacidad .modal-body ul {
  color: #333333 !important;
  padding-left: 1.5rem;
}

#modalPoliticaPrivacidad .modal-body li {
  color: #333333 !important;
  margin-bottom: 0.5rem;
}

#modalPoliticaPrivacidad .modal-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

/* Asegurar que el texto sea visible en diferentes temas */
#modalPoliticaPrivacidad * {
  color: #333333 !important;
}

#modalPoliticaPrivacidad .btn-close {
  filter: invert(1);
}

/* Estilos para modal de Terminos y Condiciones */
#modalTerminosCondiciones .modal-content {
  background-color: #ffffff;
  color: #333333;
}

#modalTerminosCondiciones .modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

#modalTerminosCondiciones .modal-title {
  color: #333333;
  font-weight: 600;
}

#modalTerminosCondiciones .modal-body {
  color: #333333;
  background-color: #ffffff;
}

#modalTerminosCondiciones .modal-body p {
  color: #333333 !important;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: justify;
}

#modalTerminosCondiciones .modal-body h6 {
  color: #2c3e50 !important;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

#modalTerminosCondiciones .modal-body ul {
  color: #333333 !important;
  padding-left: 1.5rem;
}

#modalTerminosCondiciones .modal-body li {
  color: #333333 !important;
  margin-bottom: 0.5rem;
}

#modalTerminosCondiciones .modal-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

/* Asegurar que el texto sea visible en diferentes temas */
#modalTerminosCondiciones * {
  color: #333333 !important;
}

#modalTerminosCondiciones .btn-close {
  filter: invert(1);
}

/* Estilos para modal de Politicas de Cookies */
#modalPoliticaCookies .modal-content {
  background-color: #ffffff;
  color: #333333;
}

#modalPoliticaCookies .modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

#modalPoliticaCookies .modal-title {
  color: #333333;
  font-weight: 600;
}

#modalPoliticaCookies .modal-body {
  color: #333333;
  background-color: #ffffff;
}

#modalPoliticaCookies .modal-body p {
  color: #333333 !important;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: justify;
}

#modalPoliticaCookies .modal-body h6 {
  color: #2c3e50 !important;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

#modalPoliticaCookies .modal-body ul {
  color: #333333 !important;
  padding-left: 1.5rem;
}

#modalPoliticaCookies .modal-body li {
  color: #333333 !important;
  margin-bottom: 0.5rem;
}

#modalPoliticaCookies .modal-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

/* Asegurar que el texto sea visible en diferentes temas */
#modalPoliticaCookies * {
  color: #333333 !important;
}

#modalPoliticaCookies .btn-close {
  filter: invert(1);
}

:root {
  --main-color: #1D3281;
  --main-light: #2140a0;
  --main-dark: #172862;
  --white: #ffffff;
  --card-bg: white;
  --card-cap-bg: var(--main-color);
  --card-cap-color: var(--white);
  --card-color: #4f4848;
}

.nav-pills .nav-link {
  color: grey;
}

.nav-pills .nav-link.active {
  color: white;
}

.nav-pills .nav-link:not(.active):hover {
  color: black;
}

.nav-pills .nav-item.dropdown.show .nav-link:hover {
  color: black;
}/*# sourceMappingURL=intranet2.css.map */